今天依然寫查詢成績:
n=[]
l=[]
m=[]
e=[]
na=[]
for i in range(2):
n.append(input('請輸入{}號學生姓名?'.format(i)))
l.append(int(input('請輸入{}號學生國文成績?'.format(i))))
m.append(int(input('請輸入{}號學生數學成績?'.format(i))))
e.append(int(input('請輸入{}號學生英文成績?'.format(i))))
na.append(int(input('請輸入想查詢的學生座號?')))
if na==i:
print(n[i],'號','國文',l[i],'數學',m[i],'英文',e[i])
else:
print('無法查詢')
這次加了一個參數na,結果還是無法取第一個:
請輸入0號學生姓名?l
請輸入0號學生國文成績?12
請輸入0號學生數學成績?13
請輸入0號學生英文成績?14
請輸入1號學生姓名?k
請輸入1號學生國文成績?25
請輸入1號學生數學成績?24
請輸入1號學生英文成績?26
請輸入想查詢的學生座號?0
無法查詢
說實在,有點挫折,不過這也是我進步的動力。